/* THEME: Cloudivine Midnight Luxury 
   Vibe: Experienced, Secure, High-End
*/

:root {
    --bg-deep: #0B1120;       /* Very dark midnight blue */
    --bg-card: #151F32;       /* Slightly lighter blue for cards */
    --text-main: #F3F4F6;     /* Off-white text */
    --text-muted: #9CA3AF;    /* Grey text */
    --gold: #D4AF37;          /* Luxury Gold */
    --gold-hover: #F59E0B;
    --border: #1E293B;        /* Subtle borders */
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-deep); /* Dark Background */
}

a {
    text-decoration: none;
    color: var(--text-main);
    transition: color 0.3s;
}

a:hover {
    color: var(--gold);
}

ul { list-style: none; }

/* HEADER - Minimal & Dark */
header {
    background-color: rgba(11, 17, 32, 0.95); /* Semi-transparent dark */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'Poppins', serif; /* Serif for prestige */
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--gold); /* Gold Logo */
    letter-spacing: 0.5px;
}

nav ul { display: flex; gap: 2.5rem; }

nav ul li a {
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

nav ul li a:hover, nav ul li a.active {
    color: var(--gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart {
    background: var(--border);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    display: flex;
    gap: 10px;
}

/* HERO SECTION - Centered Text (Like Image) */
.hero {
    text-align: center;
    padding: 8rem 2rem 4rem;
    background: radial-gradient(circle at center, #1e293b 0%, var(--bg-deep) 70%);
}

.hero h1 {
    font-family: 'Poppins', serif;
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

/* SECTION TITLES */
section h2 {
    font-family: 'Poppins', serif;
    font-size: 2.2rem;
    text-align: center;
    color: var(--gold);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Add the little lines on side of titles if desired, or keep clean */

/* SHOP BY CATEGORY (3 Column Grid) */
.shop-by-category {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category {
    background-color: #FFFFFF; 
    border: none;
    padding: 3rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}

.category h3 {
    margin-top: 1.5rem;
    font-weight: 600;
    color: #000000; 
    font-family: 'Poppins', serif;
}


.category img {
    filter: none; 
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
}

/* NEW IN / PRODUCTS (4 Column Grid) */
.new-in {
    padding: 4rem 2rem;
    background-color: #0F1623; /* Slightly different shade for depth */
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s;
}

.product img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.product h3 {
    font-size: 1.1rem;
    padding: 0 1rem;
    color: var(--white);
    min-height: 50px; /* Aligns buttons */
}

.product p {
    color: var(--gold);
    font-weight: bold;
    margin: 10px 0;
}

.product button {
    background-color: #F3F4F6;
    color: #000000; 
    border: none;
    padding: 10px 25px;
    margin: 1.5rem 1rem;
    cursor: pointer;
    text-transform: capitalize; 
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 2px; 
}

.product button:hover {
    background-color: var(--gold); 
    color: #000;
}

/* FOOTER */
footer {
    background-color: #050911; /* Pitch black/blue */
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    padding: 4rem 2rem;
    text-align: center;
}

/* =========================================
   CONTACT & ABOUT PAGE STYLES (Add to home-style.css)
   ========================================= */

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

/* 1. About Intro Section */
.about-intro {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold); /* Gold accent on left */
    padding: 40px;
    border-radius: 8px;
    margin-top: -60px; /* Overlaps with Hero for modern look */
    position: relative;
    z-index: 10;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.about-text h2 {
    text-align: left; /* Override center align */
    margin-bottom: 20px;
    color: var(--white);
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Regulatory Badges (The Trust Indicators) */
.regulatory-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 4px;
    border: 1px solid var(--border);
}

.badge span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 1px;
}

.badge strong {
    color: var(--text-main);
    font-family: 'Poppins', serif;
}

.legal-note {
    font-size: 0.9rem;
    opacity: 0.6;
    border-top: 1px solid var(--border);
    padding-top: 15px;
}

/* 2. Info Grid (3 Cards) */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.info-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid var(--border);
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.info-card h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-family: 'Poppins', serif;
}

.info-card p, .info-card address {
    color: var(--text-muted);
    font-style: normal;
    margin-bottom: 10px;
}

.highlight-gold {
    color: var(--gold) !important;
    font-size: 1.3rem;
    font-weight: 700;
}

.text-link {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 15px;
    display: inline-block;
}

/* 3. Dark Contact Form */
.form-section {
    max-width: 800px;
    margin: 0 auto;
}

.form-wrapper {
    background: var(--bg-card);
    padding: 50px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.form-wrapper h2 {
    margin-bottom: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--text-main);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

/* Dark Inputs */
.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: var(--bg-deep); /* Darker than card */
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--white);
    font-family: inherit;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

/* Styling for the hCaptcha container */
.h-captcha-container {
    margin-bottom: 25px;
    display: flex;
    justify-content: center; 
    align-items: center;
}

@media (max-width: 400px) {
    .h-captcha {
        transform: scale(0.85); 
        transform-origin: center;
    }
}

.gold-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--gold);
    color: #000; /* Black text on gold is high contrast/premium */
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.gold-btn:hover {
    background-color: var(--gold-hover);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
    .about-intro { padding: 30px 20px; margin-top: -30px; }
}

/* =========================================
   SERVICES PAGE STYLES (Add to home-style.css)
   ========================================= */

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 80px;
}

/* 1. Filter Buttons */
.service-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    margin-top: -30px; /* Pull up into hero section slightly */
    position: relative;
    z-index: 10;
}

.filter-btn {
    background-color: var(--bg-card);
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--gold);
    color: #000;
    border-color: var(--gold);
    font-weight: 600;
}

/* 2. Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* 3. Service Card Design */
.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-color: var(--gold); /* Gold border on hover */
}

/* Badge for "Best Value" */
.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--gold);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Card Icons */
.icon-wrapper {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--gold);
}

.service-card h3 {
    color: var(--white);
    font-family: 'Poppins', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    min-height: 45px; /* Keeps cards aligned */
}

/* Feature List (Checkmarks) */
.feature-list {
    list-style: none;
    margin-bottom: 25px;
    border-top: 1px solid var(--border);
    padding-top: 15px;
}

.feature-list li {
    color: var(--text-main);
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Price Tag */
.price-tag {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 700;
    margin-top: auto; /* Pushes price to bottom of card */
    margin-bottom: 20px;
}

.price-tag small {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Outline Button */
.gold-btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 12px;
    width: 100%;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.gold-btn-outline:hover {
    background-color: var(--gold);
    color: #000;
}

/* =========================================
   VIRTUAL ADDRESS PAGE STYLES
   ========================================= */

/* 1. Steps Section */
.steps-section {
    padding: 60px 20px;
    background-color: var(--bg-deep);
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 40px auto 0;
}

.step-card {
    background: transparent;
    padding: 20px;
    position: relative;
}

.step-number {
    font-family: 'Poppins', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.2); /* Faded Gold */
    line-height: 1;
    margin-bottom: 10px;
}

.step-card h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* 2. Highlight Card (Make one card pop) */
.highlight-card {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

/* 3. Info Block / Benefits */
.info-block {
    background-color: var(--bg-card);
    padding: 80px 20px;
    border-top: 1px solid var(--border);
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.benefit-item h4 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.benefit-item p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* =========================================
   TOAST NOTIFICATION (Add to home-style.css)
   ========================================= */

.toast-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--gold);
    color: #000;
    padding: 15px 25px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    font-weight: 600;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.toast-notification.show {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================
   ADVANCED FOOTER STYLES (Add to home-style.css)
   ========================================= */

footer {
    background-color: #050911; /* Pitch black/blue */
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0; /* Reset padding to handle inner containers */
    font-size: 0.9rem;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    color: var(--gold);
    font-family: 'Poppins', serif;
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Column 1: Addresses & Maps */
.address-block {
    margin-bottom: 20px;
}

.address-block strong {
    color: var(--text-main);
    display: block;
    margin-bottom: 5px;
}

.map-preview {
    background-color: var(--border);
    height: 80px; /* Small map height like reference */
    width: 100%;
    margin-top: 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s;
    border: 1px dashed rgba(255,255,255,0.1);
}

.map-preview:hover {
    opacity: 0.8;
}

/* Column 2: Contact Details */
.contact-details li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-details strong {
    color: var(--text-main);
}

.gold-text {
    color: var(--gold);
    font-weight: 700;
}

/* Column 3: Legal/Notes */
.legal-text {
    margin-bottom: 15px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #6b7280; /* Darker grey for secondary text */
}

.legal-text strong {
    color: var(--text-main);
}

/* Column 4: Useful Links */
.footer-links li {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Subtle dividers */
    padding-bottom: 8px;
}

.footer-links a {
    color: var(--text-muted);
    transition: all 0.2s;
    display: block;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px; /* Slight movement on hover */
}

/* Bottom Bar */
.footer-bottom {
    background-color: #020408; /* Even darker for bottom bar */
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: #4b5563;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr; /* Stack columns on mobile */
        gap: 30px;
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-deep);
}

a {
    text-decoration: none;
    color: var(--text-main);
    transition: color 0.3s;
}

a:hover {
    color: var(--gold);
}

ul {
    list-style: none;
}

/* HEADER - Minimal & Dark */
header {
    background-color: rgba(11, 17, 32, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'Poppins', serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--gold);
    letter-spacing: 0.5px;
}

nav ul {
    display: flex;
    gap: 2.5rem;
}

nav ul li a {
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart {
    background: var(--border);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    display: flex;
    gap: 10px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HERO SECTION */
.hero {
    text-align: center;
    padding: 4rem 0;
}

.hero h1 {
    font-family: 'Poppins', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.price {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 700;
    margin: 1rem 0;
}

.postbox-img {
    float: right;
    margin: 0 0 2rem 2rem;
    max-width: 300px;
}

.postbox-img img {
    width: 100%;
    border-radius: 8px;
}

/* Buttons */
.gold-btn {
    background-color: var(--gold);
    color: #000;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin: 1rem 0;
}

.gold-btn:hover {
    background-color: var(--gold-hover);
}

/* Content Sections */
section {
    padding: 2rem 0;
}

section h2 {
    font-family: 'Poppins', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.content {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.content p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-deep);
}

a {
    text-decoration: none;
    color: var(--text-main);
    transition: color 0.3s;
}

a:hover {
    color: var(--gold);
}

ul {
    list-style: none;
}

/* HEADER - Minimal & Dark */
header {
    background-color: rgba(11, 17, 32, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'Poppins', serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--gold);
    letter-spacing: 0.5px;
}

nav ul {
    display: flex;
    gap: 2.5rem;
}

nav ul li a {
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart {
    background: var(--border);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    display: flex;
    gap: 10px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HERO SECTION */
.hero {
    text-align: center;
    padding: 4rem 0;
}

.hero h1 {
    font-family: 'Poppins', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.price {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 700;
    margin: 1rem 0;
}

.postbox-img {
    float: right;
    margin-right: -120px;
    margin-top: -90px;
    max-width: 300px;
}

.postbox-img img {
    width: 100%;
    border-radius: 10px;
}

/* Buttons */
.gold-btn {
    background-color: var(--gold);
    color: #000;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin: 1rem 0;
}

.gold-btn:hover {
    background-color: var(--gold-hover);
}

/* Content Sections */
section {
    padding: 2rem 0;
}

section h2 {
    font-family: 'Poppins', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.content {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.content p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.content li {
    margin-bottom: 0.5rem;
}

/* Steps Grid */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step {
    text-align: center;
    padding: 1.5rem;
}

.step h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .postbox-img {
        float: none;
        margin: 0 auto;
        max-width: 100%;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
}

/* =========================================
   CORE RESPONSIVE ENGINE 
   ========================================= */

/* 1. Desktop Defaults for Navigation Wrapper */
.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex: 1;
    justify-content: flex-end;
}

.menu-toggle {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--gold);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. Tablet & Mobile Adjustments (1024px and below) */
@media (max-width: 1024px) {
    /* Header & Hamburger Logic */
    .menu-toggle {
        display: flex;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden off-screen */
        width: 100%;
        height: 100vh;
        background-color: var(--bg-deep);
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 2rem 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-wrapper.active {
        right: 0; /* Slides into view */
    }

    #nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    #nav-menu li a {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    .header-actions {
        flex-direction: column;
        width: 100%;
        gap: 1.5rem;
        padding-top: 2rem;
        border-top: 1px solid var(--border);
    }

    .header-actions input {
        width: 100%;
        max-width: 400px;
        background: var(--bg-card);
        border: 1px solid var(--border);
        padding: 15px;
        color: white;
    }

    /* Hero Sections */
    .hero {
        padding: 5rem 1.5rem 3rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    /* Global Grid Reset: Categories, Products, and Services */
    .categories, 
    .products, 
    .services-grid, 
    .info-grid, 
    .steps-grid, 
    .benefits-grid {
        grid-template-columns: 1fr !important; /* Stack all elements vertically */
        gap: 1.5rem;
    }

    /* Layout Adjustments */
    .postbox-img {
        float: none;
        margin: 2rem auto;
        max-width: 100%;
        text-align: center;
    }
}

/* 3. Small Mobile Adjustments (768px and below) */
@media (max-width: 768px) {
    /* Prevent content from being hidden by the mobile-bottom-actions bar */
    body {
        padding-bottom: 80px; 
    }

    /* Contact Form Adjustments */
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 25px;
    }

    .about-intro {
        margin-top: 0;
        padding: 25px;
        border-left: none;
        border-top: 4px solid var(--gold);
    }

    /* Footer Column Stacking */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links li a:hover {
        padding-left: 0; /* Disable horizontal hover shift on mobile */
    }
}

/* 4. Animation for Hamburger to 'X' */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* Search Container & Dropdown Styling */
.search-container {
    position: relative;
    display: inline-block;
}

.search-results-dropdown {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px; /* Adjust based on your header layout */
    background-color: #ffffff;
    border: 1px solid #ddd;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 4px;
    max-height: 300px;
    overflow-y: auto;
    margin-top: 5px;
}

.search-result-item {
    padding: 10px;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item a {
    text-decoration: none;
    color: #333;
    display: block;
    font-family: 'Inter', sans-serif;
}

.search-result-item a strong {
    color: #000;
    font-size: 14px;
}

.search-result-item a small {
    color: #666;
    display: block;
    font-size: 12px;
    margin-top: 3px;
}

.search-result-item:hover {
    background-color: #f9f9f9;
}